home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / fortran / for77win.lzh / README.1ST < prev    next >
Text File  |  1987-11-13  |  3KB  |  111 lines

  1.                           Introduction
  2.  
  3.  
  4. WINDOWS FOR FORTRAN are a set of routines written for MS FORTRAN compiler,
  5. to provide windowing capabilities, and more forgiving input routines.
  6.  
  7. These routines are mostly in ASSEMPLY, but FORTRAN programmers will feel at
  8. home because it uses the fortran calling convention and does not impose
  9. any limits on the size of different types other than charactar arrays.
  10.  
  11. I have provided a short documentations for the routines, also it will be
  12. of great help to study the source code of the demo program.
  13.  
  14. I have also provided two version of the library
  15.  
  16. WINDOW.LIB   for fortran 4.0+
  17. WIND33.LIB   for fortran 3.3
  18.  
  19. so you can use either one to compile and run your code. WIND33.LIB might
  20. work fine with MS FORTRAN 3.2 but I can not guarantee it. Try it and tell
  21. me.
  22.  
  23. These routines took a lot of time and study to be completed. The least I ask
  24. from you is to let me know how do you think about them, and what can be done
  25. to improve them. You can send me your comments at the address which you will
  26. find somewhere in this file.
  27.  
  28. HAPPY COMPUTING...
  29.  
  30.  
  31.  
  32.  
  33.                             Warrantee
  34.  
  35. This software and instructions are provided "as is" without warranty of any
  36. kind either expressed or implied including but not limited to fitness for a
  37. particular purpose. The entire risk as to the results and performance of the
  38. software is assumed by the user.
  39.  
  40.  
  41.  
  42.                          License for Use
  43.  
  44. These WINDOWS FOR FORTRAN Library modules may be copied, distributed
  45. (free of charge), and used "non-commercially" provided that they are not
  46. modified in any way.
  47.  
  48. If you find this routines usefull please support the Author by sending a
  49. donation of any kind or amount. This will make me feel happy and encourage
  50. me to continue my work.
  51.  
  52. If you like to get the source code and printed document and source listing
  53. send a donation for $40.00 to the mailing address below.
  54.  
  55. You can get the last version by either sending me a disk in a SASE, or
  56. $8.00 to the address below.
  57.  
  58.  
  59.    71350,1124 on CompuServe
  60.  
  61. Mailing Address:
  62.  
  63.  
  64.    Tareq AboAlfaraj
  65.    2490 STONE DR
  66.    Ann Arbor, MI. 48105
  67.  
  68.  
  69.  
  70.  
  71.  
  72. Note:
  73.  
  74.  
  75. The demo program was compiled to write directly to screen without snow .
  76. If your screen does have snow edit the file DEMO.FOR, change the line:
  77.  
  78.     call winit(2,imode)
  79. to
  80.     call winit(1,imode)     for direct display with snow
  81. or
  82.     call winit(0,imode)     for writing through bios
  83.  
  84.  
  85. recompile again using the appropriate library.
  86.  
  87.  
  88. For MS FORTRAN 4.0 use
  89.  
  90. fl /FPa DEMO.FOR  /link  window
  91.  
  92. or whatever floating point library you use.
  93.  
  94. Have a good time.
  95.  
  96.  
  97.  
  98. This is a list of files in this disk
  99.  
  100.  
  101.  
  102. README.1ST                This file.
  103. DEMO.FOR                  Source code for DEMO
  104. DEMO.EXE                  Executable DEMO file.
  105. WINDOW.LIB                Library for MS FORTRAN 4.0
  106. WIND33.LIB                Library for MS FORTRAN 3.3
  107. WINDOW.TXT                DOCUMENTATION FOR "WINDOWS FOR FORTRAN"
  108.  
  109.  
  110.  
  111.